home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
- CLS
- REM Terry E. Mercer may be reached at:
- REM 4184 Hilsinger Road, Phoenix, OR 97535
- REM 1-503-535-4194 Voice or 1-503-535-8151 Fax/Modem
- REM
- REM Micromedia Publishers, Inc. may be reached at:
- REM 505 NE 7th, Grants Pass, OR 97526
- REM 1-503-474-1111 or 1-503-471-4133 (both Voice) or
- REM 1-503-474-2486 or 1-503-471-8836 (both Fax)
- REM
- REM
- ECHO.
- ECHO.
- ECHO.
- ECHO This Program is to assist in the UN-Installation of programs
- ECHO found on this CD, using the MMPI & PBG CD Rom Launcher
- ECHO ══════════════════════════════════════════
- ECHO WRITTEN BY TERRY E. MERCER c 15 April 1995
- ECHO THIS BATCH PROGRAM IS COPYRIGHT PROTECTED, AND MAY BE USED
- ECHO ONLY AS SPECIFIED BY Terry Mercer or MicroMedia Publishers, Inc.
- ECHO.
- ECHO.
- ECHO NOTE: This program can also Un-Install (Delete and Remove)
- ECHO everything it installs! It has done so safely and
- ECHO perfectly on all of our test systems running DOS 6.xx!
- ECHO.
- PAUSE
- cls
- IF !%1==! GOTO SORRY
- GOTO UNINSTALL
-
- :UNINSTALL
- IF NOT EXIST C:\DOS\CHOICE.COM GOTO DELET2
- ECHO.
- ECHO.
- ECHO Are you sure you want to Delete this Program?
- ECHO.
- CHOICE /c:yn /n /t:Y,60
- IF ERRORLEVEL 2 GOTO END
- IF ERRORLEVEL 1 GOTO DELET3
-
- :DELET2
- ECHO.
- ECHO.
- ECHO Do you want to Delete this Program from your hard disk?
- ECHO.
- ECHO If you DO then press the enter key... if not, hold down
- ECHO the Control (CTRL) key and press the letter C then Y(es).
- ECHO.
- ECHO.
- PAUSE
- GOTO NEXT
-
- :NEXT
- IF NOT EXIST !.BAT GOTO SORRY
- ECHO.
- ECHO Please wait... this may take a few mintues, depending on
- ECHO the speed of your computer and hard disk drive.
- ECHO.
- ATTRIB -R *.* /S
- ECHO. Y | DEL *.*
- CD\
- RD %1
- GOTO END
-
- :SORRY
- ECHO.
- ECHO Sorry, but this program is not working correctly on your computer.
- ECHO Or has been installed to a directory with a name other than ERL.
- ECHO See your DOS manual or consult a smart friend to Un-Install this.
- ECHO.
- ECHO.
- ECHO.
- pause
- goto end
-
- :end